home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-01-14 | 1.2 KB | 39 lines | [TEXT/MPS ] |
- /* _________________________________________________________________________________________________________ //
- Copyright © 1992-93 Apple Computer, Inc. All rights reserved.
- Macintosh Developer Technical Support.C++ Macintosh Toolbox Framework.
- Programmer: Kent Sandvik
- Date: Wednesday, June 10, 1992 22:37:30
- Revision comments are at the end of this file.
- ---
- TToolbox is a Toolbox initialization and testing class.
- TestToolbox.cp contains the testing code for testing TToolbox.
- _________________________________________________________________________________________________________ */
-
- #ifndef _TOOLBOX_
- #include "Toolbox.h"
- #endif
-
- // This is a trivial test, all it does is to call the init phase of the TToolbox class,
- // and that all it should do anyway…
-
- void main(void)
- {
- cout << "Start of TToolbox test…\n";
-
- // Initialize environment.
- TToolbox myToolbox;
- myToolbox.Initialize();
-
- cout << "End of TToolbox test!\n";
- }
-
- // _________________________________________________________________________________________________________ //
-
-
- /* Change History (most recent last):
- No Init. Date Comment
- 1 khs 6/6/92 New file
- 2 khs 1/3/93 Cleanup
- */
-
-